home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Demos / Delphi.Net / CLR / SimplePrintout / DemoProj.dpr < prev    next >
Encoding:
Text File  |  2004-10-22  |  3.1 KB  |  76 lines

  1. program DemoProj;
  2.  
  3. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.dll'}
  4. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Data.dll'}
  5. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Drawing.dll'}
  6. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.Windows.Forms.dll'}
  7. {%DelphiDotNetAssemblyCompiler '$(SystemRoot)\microsoft.net\framework\v1.1.4322\System.XML.dll'}
  8. {%ResXCompiler 'WinForm.resx'}
  9.  
  10. uses
  11.   System.Reflection,
  12.   System.Runtime.CompilerServices,
  13.   System.Windows.Forms,
  14.   WinForm in 'WinForm.pas' {WinForm.TWinForm: System.Windows.Forms.Form};
  15.  
  16. //
  17. // General Information about an assembly is controlled through the following
  18. // set of attributes. Change these attribute values to modify the information
  19. // associated with an assembly.
  20. //
  21. [assembly: AssemblyTitle('')]
  22. [assembly: AssemblyDescription('')]
  23. [assembly: AssemblyConfiguration('')]
  24. [assembly: AssemblyCompany('')]
  25. [assembly: AssemblyProduct('')]
  26. [assembly: AssemblyCopyright('')]
  27. [assembly: AssemblyTrademark('')]
  28. [assembly: AssemblyCulture('')]
  29.  
  30. //
  31. // Version information for an assembly consists of the following four values:
  32. //
  33. //      Major Version
  34. //      Minor Version
  35. //      Build Number
  36. //      Revision
  37. //
  38. // You can specify all the values or you can default the Revision and Build Numbers
  39. // by using the '*' as shown below:
  40.  
  41. [assembly: AssemblyVersion('1.0.*')]
  42.  
  43. //
  44. // In order to sign your assembly you must specify a key to use. Refer to the
  45. // Microsoft .NET Framework documentation for more information on assembly signing.
  46. //
  47. // Use the attributes below to control which key is used for signing.
  48. //
  49. // Notes:
  50. //   (*) If no key is specified, the assembly is not signed.
  51. //   (*) KeyName refers to a key that has been installed in the Crypto Service
  52. //       Provider (CSP) on your machine. KeyFile refers to a file which contains
  53. //       a key.
  54. //   (*) If the KeyFile and the KeyName values are both specified, the
  55. //       following processing occurs:
  56. //       (1) If the KeyName can be found in the CSP, that key is used.
  57. //       (2) If the KeyName does not exist and the KeyFile does exist, the key
  58. //           in the KeyFile is installed into the CSP and used.
  59. //   (*) In order to create a KeyFile, you can use the sn.exe (Strong Name) utility.
  60. //       When specifying the KeyFile, the location of the KeyFile should be
  61. //       relative to the project output directory. For example, if your KeyFile is
  62. //       located in the project directory, you would specify the AssemblyKeyFile
  63. //       attribute as [assembly: AssemblyKeyFile('mykey.snk')], provided your output
  64. //       directory is the project directory (the default).
  65. //   (*) Delay Signing is an advanced option - see the Microsoft .NET Framework
  66. //       documentation for more information on this.
  67. //
  68. [assembly: AssemblyDelaySign(false)]
  69. [assembly: AssemblyKeyFile('')]
  70. [assembly: AssemblyKeyName('')]
  71.  
  72. [STAThread]
  73. begin
  74.   Application.Run(TWinForm.Create);
  75. end.
  76.